home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / 071-080 / amok78 / wipe / s / cdt < prev    next >
AmigaDOS Script File  |  1993-11-04  |  382b  |  29 lines

  1. .key pfad
  2. ; CD to TeX-Amiga environment
  3. ; usage cdt [pfad]
  4.  
  5. if not exists TeX:
  6.   Echo "Laufwerk TeX: nicht vorhanden !"
  7.   quit
  8. endif
  9.  
  10. stack 30000
  11. path TeX: add
  12. setenv AEd.mode TeX
  13.  
  14. cd TeX:
  15. if "<pfad>" gt " "
  16.   if exists "<pfad>"
  17.     cd "<pfad>"
  18.   endif
  19. else
  20.   if exists "env:TeXProject"
  21.     if exists "$TeXProject"
  22.       cd  "$TeXProject"
  23.     endif
  24.   endif
  25. endif
  26.  
  27. run >NIL: AmokEd
  28.  
  29.